home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 21 / cdromtoday-21.iso / mac / Multimedia Bird Book / PROFILE.DIR / 00186_Script_186 < prev    next >
Text File  |  1995-06-23  |  860b  |  28 lines

  1. on mouseDown
  2.   if (the castNum of sprite 8 = the number of cast "pause") then 
  3.     
  4.     set the movieTime of sprite 2 = (the movieTime of sprite 2 + 6)
  5.     set the castNum of sprite 8 = the number of cast "pauseDown"
  6.     updateStage
  7.     startTimer
  8.     repeat while the timer > 10
  9.       --  
  10.     end repeat
  11.     set the castNum of sprite 8 = the number of cast "pause"
  12.     updateStage
  13.   end if
  14.   
  15.   if not(the castNum of sprite 6 = the number of cast "stopDown") then
  16.     
  17.     set the movieRate of sprite 2 = 0
  18.     set the castNum of sprite 8 = the number of cast "pauseDown"
  19.     updateStage
  20.     playPuppet("key")
  21.     
  22.     set the castNum of sprite 7 = the number of cast "play"
  23.     set the castNum of sprite 6 = the number of cast "stopDown"
  24.     set the castNum of sprite 8 = the number of cast "pause"
  25.     updatestage
  26.   end if
  27.   
  28. end